crypto/internal/fips140/aes/gcm.gcmFieldElement.high (field)

15 uses

	crypto/internal/fips140/aes/gcm (current package)
		ghash.go#L21: 	low, high uint64
		ghash.go#L65: 	byteorder.BEPutUint64(out[8:], y.high)
		ghash.go#L78: 	return gcmFieldElement{x.low ^ y.low, x.high ^ y.high}
		ghash.go#L83: 	msbSet := x.high&1 == 1
		ghash.go#L86: 	double.high = x.high >> 1
		ghash.go#L87: 	double.high |= x.low << 63
		ghash.go#L114: 		word := y.high
		ghash.go#L122: 			msw := z.high & 0xf
		ghash.go#L123: 			z.high >>= 4
		ghash.go#L124: 			z.high |= z.low << 60
		ghash.go#L133: 			z.high ^= t.high
		ghash.go#L146: 		y.high ^= byteorder.BEUint64(blocks[8:])